// AVOID creating an array inside draw(), it is slow
void draw() {
  int[] values = new int[200];
  // Do something with the array here
}